Platform Explorer / Nuxeo Platform 6.0

Operation Context.SetWorkflowNodeVar (Set Node Variable)

Description

Set a workflow node variable given a name and the value in the context of a running workflow. To compute the value at runtime from the current context you should use an EL expression as the value. This operation works on any input type and return back the input as the output.
Operation id Context.SetWorkflowNodeVar
Category Workflow Context
Label Set Node Variable
Requires Workflow
Since

Parameters

Name Description Type Required Default value
name string yes  
value object yes  

Signature

Inputs void
Outputs void

Implementation Information

Implementation Class Class: org.nuxeo.ecm.platform.routing.api.operation.SetWorkflowNodeVar
Contributing Component org.nuxeo.ecm.platform.routing.operations

JSON Definition

{
  "id" : "Context.SetWorkflowNodeVar",
  "label" : "Set Node Variable",
  "category" : "Workflow Context",
  "requires" : "Workflow",
  "description" : "Set a workflow node variable given a name and the value in the context of a running workflow. To compute the value at runtime from the current context you should use an EL expression as the value. This operation works on any input type and return back the input as the output.",
  "url" : "Context.SetWorkflowNodeVar",
  "signature" : [ "void", "void" ],
  "params" : [ {
    "name" : "name",
    "description" : null,
    "type" : "string",
    "required" : true,
    "widget" : null,
    "order" : 0,
    "values" : [ ]
  }, {
    "name" : "value",
    "description" : null,
    "type" : "object",
    "required" : true,
    "widget" : null,
    "order" : 0,
    "values" : [ ]
  } ]
}